home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Begin VB.Form About
- Appearance = 0 'Flat
- BackColor = &H80000004&
- BorderStyle = 3 'Fixed Dialog
- ClientHeight = 1725
- ClientLeft = 3675
- ClientTop = 3195
- ClientWidth = 4155
- ClipControls = 0 'False
- ControlBox = 0 'False
- BeginProperty Font
- Name = "MS Sans Serif"
- Size = 8.25
- Charset = 0
- Weight = 700
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- ForeColor = &H80000008&
- LinkTopic = "Form3"
- MaxButton = 0 'False
- MinButton = 0 'False
- PaletteMode = 1 'UseZOrder
- Picture = "About.frx":0000
- ScaleHeight = 1725
- ScaleWidth = 4155
- ShowInTaskbar = 0 'False
- StartUpPosition = 2 'CenterScreen
- Visible = 0 'False
- Begin VB.CommandButton AboutExit
- Appearance = 0 'Flat
- BackColor = &H80000005&
- Caption = "&OK"
- Default = -1 'True
- Height = 375
- Left = 3000
- TabIndex = 0
- Top = 1200
- Width = 960
- End
- Begin VB.Label Label4
- Alignment = 2 'Center
- BackStyle = 0 'Transparent
- Caption = "Dennis Hallman"
- BeginProperty Font
- Name = "MS Sans Serif"
- Size = 12
- Charset = 0
- Weight = 700
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- ForeColor = &H0080C0FF&
- Height = 375
- Left = 120
- TabIndex = 4
- Top = 1320
- Width = 2775
- End
- Begin VB.Label Label3
- Alignment = 2 'Center
- BackStyle = 0 'Transparent
- Caption = "By"
- ForeColor = &H0080C0FF&
- Height = 255
- Left = 240
- TabIndex = 3
- Top = 1080
- Width = 2655
- End
- Begin VB.Label Label2
- Alignment = 2 'Center
- BackStyle = 0 'Transparent
- Caption = "Version Number"
- ForeColor = &H00C0C000&
- Height = 495
- Left = 360
- TabIndex = 2
- Top = 600
- Width = 2295
- End
- Begin VB.Label Label1
- Alignment = 2 'Center
- Appearance = 0 'Flat
- BackColor = &H80000004&
- BackStyle = 0 'Transparent
- Caption = "Program Title"
- BeginProperty Font
- Name = "MS Sans Serif"
- Size = 13.5
- Charset = 0
- Weight = 700
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- ForeColor = &H00C0E0FF&
- Height = 495
- Left = 120
- TabIndex = 1
- Top = 120
- Width = 3855
- End
- Attribute VB_Name = "About"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Option Explicit
- Private Sub AboutExit_Click()
- Unload Me
- End Sub
- Private Sub Form_Load()
- About.Label1 = "HANGMAN"
- About.Label2 = "Version 2.0" & vbLf & "Copyright 1999-2000"
- 'About.Top = frmHangman.Top + (frmHangman.Height / 2) - About.Height / 2
- 'About.Left = frmHangman.Left + (frmHangman.Width / 2) - About.Width / 2
- End Sub
-